home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue42 / system / UCAniIconEdit.dfm / UCAniIconEdit.txt
Text File  |  1998-12-30  |  2KB  |  114 lines

  1. object AniIconEditorDialog: TAniIconEditorDialog
  2.   Left = 750
  3.   Top = 191
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Animated Icon Editor'
  7.   ClientHeight = 306
  8.   ClientWidth = 357
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object OKButton: TButton
  20.     Left = 274
  21.     Top = 12
  22.     Width = 75
  23.     Height = 25
  24.     Caption = 'OK'
  25.     Default = True
  26.     ModalResult = 1
  27.     TabOrder = 0
  28.   end
  29.   object CancelButton: TButton
  30.     Left = 274
  31.     Top = 41
  32.     Width = 75
  33.     Height = 25
  34.     Cancel = True
  35.     Caption = 'Cancel'
  36.     ModalResult = 2
  37.     TabOrder = 1
  38.   end
  39.   object GroupBox1: TGroupBox
  40.     Left = 10
  41.     Top = 7
  42.     Width = 255
  43.     Height = 288
  44.     TabOrder = 2
  45.     object ImagePanel: TPanel
  46.       Left = 10
  47.       Top = 16
  48.       Width = 235
  49.       Height = 235
  50.       BevelOuter = bvNone
  51.       BorderWidth = 5
  52.       BorderStyle = bsSingle
  53.       Color = 14680063
  54.       TabOrder = 0
  55.       object ImagePaintBox: TPaintBox
  56.         Left = 5
  57.         Top = 5
  58.         Width = 221
  59.         Height = 221
  60.         Align = alClient
  61.       end
  62.     end
  63.     object Load: TButton
  64.       Left = 10
  65.       Top = 257
  66.       Width = 75
  67.       Height = 23
  68.       Caption = '&Load...'
  69.       TabOrder = 1
  70.       OnClick = LoadClick
  71.     end
  72.     object Save: TButton
  73.       Left = 90
  74.       Top = 257
  75.       Width = 75
  76.       Height = 23
  77.       Caption = '&Save...'
  78.       TabOrder = 2
  79.       OnClick = SaveClick
  80.     end
  81.     object Clear: TButton
  82.       Left = 170
  83.       Top = 257
  84.       Width = 75
  85.       Height = 23
  86.       Caption = '&Clear'
  87.       TabOrder = 3
  88.       OnClick = ClearClick
  89.     end
  90.   end
  91.   object OpenDialog: TOpenPictureDialog
  92.     DefaultExt = 'ani'
  93.     Filter = 'Animated Icons (*.ani)|*.ani'
  94.     Title = 'Load Animated Icon'
  95.     Left = 294
  96.     Top = 82
  97.   end
  98.   object SaveDialog: TSavePictureDialog
  99.     DefaultExt = 'ani'
  100.     Filter = 'Animated Icons (*.ani)|*.ani'
  101.     Options = [ofOverwritePrompt]
  102.     Title = 'Save Animated Icon'
  103.     Left = 291
  104.     Top = 116
  105.   end
  106.   object Timer1: TTimer
  107.     Enabled = False
  108.     Interval = 50
  109.     OnTimer = Timer1Timer
  110.     Left = 294
  111.     Top = 155
  112.   end
  113. end
  114.